home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / sos3-2.lha / src / psm / psm_err.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-23  |  3.4 KB  |  53 lines

  1. /* --------------------------------------------------------------------------
  2.  * Copyright 1992 by Forschungszentrum Informatik (FZI)
  3.  *
  4.  * You can use and distribute this software under the terms of the licence
  5.  * you should have received along with this program.
  6.  * If not or if you want additional information, write to
  7.  * Forschungszentrum Informatik, "STONE", Haid-und-Neu-Strasse 10-14,
  8.  * D-7500 Karlsruhe 1, Germany.
  9.  * --------------------------------------------------------------------------
  10.  */
  11. #include "psm_err.h"
  12.  
  13. const err_msg err_PSM_ACCESS_ON_TEMP="access() not allowed on temporary container";
  14. const err_msg err_PSM_ADD_WITH_TEMP="+= not allowed on temporary container";
  15. const err_msg err_PSM_ALLOC_NULL_BYTES="not allowed to allocate null bytes";
  16. const err_msg err_PSM_CLEAR_ON_TEMP="clear() not allowed on temporary container";
  17. const err_msg err_PSM_CLOSE_ON_TEMP="close() not allowed on temporary container";
  18. const err_msg err_PSM_COMMIT_ON_TEMP="commit() not allowed on temporary container";
  19. const err_msg err_PSM_CONTAINER_TABLE_FULL="container table full";
  20. const err_msg err_PSM_CREATE_FAILED="cannot create container";
  21. const err_msg err_PSM_DEALLOC_NULL_BYTES="not allowed to deallocate null bytes";
  22. const err_msg err_PSM_DEALLOCATE_WRONG_OFFSET="deallocate on table of free blocks (offset<1024)";
  23. const err_msg err_PSM_DESTROY_ON_TEMP="destroy() not allowed on temporary container";
  24. const err_msg err_PSM_DESTROY_DURING_CHECKOUT="destroy() not allowed during checkout";
  25. const err_msg err_PSM_DESTROYED_CONTAINER="operation is not allowed on a destroyed container";
  26. const err_msg err_PSM_EMPTY_ON_TEMP="empty() not allowed on temporary container";
  27. const err_msg err_PSM_EXISTS="error while exists(): invalid containerstatus";
  28. const err_msg err_PSM_FREELIST_CHECK_FAILED="you reads/writes/deallocates a part of a block of the freelist";
  29. const err_msg err_PSM_INVALID_CURSOR="get() on containerset with invalid sos_container_cursor";
  30. const err_msg err_PSM_LOST_ALL_LOCKS="you have lost all locks when trying a writelock to the container";
  31. const err_msg err_PSM_MODIFIED_ON_TEMP="modified() called on temporary container";
  32. const err_msg err_PSM_NO_ACCESS="access() called on unopened container";
  33. const err_msg err_PSM_NONWRITEABLE_CONTAINER="container not opened for writing";
  34. const err_msg err_PSM_OPEN_ON_TEMP="open() not allowed on temporary container";
  35. const err_msg err_PSM_OPEN_TWICE="open() called on opened container";
  36. const err_msg err_PSM_PATH_TOO_LONG="container path too long";
  37. const err_msg err_PSM_RESET_ON_TEMP="reset() not allowed on temporary container";
  38. const err_msg err_PSM_STATUS_ON_TEMP="status() not allowed on temporary container";
  39. const err_msg err_PSM_TEMP_FULL="no more space in temporary container";
  40. const err_msg err_PSM_UNOPENED_CONTAINER="access to unopened container";
  41. const err_msg err_PSM_WRITEPAGE="internal error in writepage";
  42. const err_msg err_PSM_WRONG_OFFSET="access outside allocated area";
  43. const err_msg err_PSM_WRONG_OFFSET_IN_OBJ_EXIST="wrong offset when using object_exists()";
  44.  
  45. const err_msg err_CNT_USAGE="usage:cnt [-t] (-o | -d | -s) <container>";
  46. const err_msg err_CNT_OPEN_FAILED="cnt: open failed";
  47. const err_msg err_CNT_CONTAINER_BUSY="cnt: container busy";
  48.  
  49. const err_msg err_NO_CONTAINER_PATH="environment variable SOSCONTAINER not set";
  50.  
  51. const err_msg err_MON_SERVER_CONNECTION_FAILED="cannot connect to X server";
  52. const err_msg err_MON_PIXMAP_CREATION_FAILED="cannot create bitmap";
  53.